Aviation API icon

Aviation API

(0 reviews)

9 Graphical NZ Significant Weather (GNZSIGWX) Charts

The Graphical New Zealand Significant Weather Chart (GNZSIGWX) is a forecast issued for the NZZC FIR. The chart is issued indicating forecast position of significant icing, mountain waves, thunderstorms/Cumulonimbus (CBs), and turbulence. Charts are issued 3 times a day (validity periods 21Z-12Z, 03Z18Z and 15Z-06Z). Charts are issued for 3 flight levels (FL100, FL250 and FL410). These charts cover the air space from surface to the flight level stated.

9.1 Latest for a Flight Level

Request the latest GNZSIGWX chart for a specific flight level.

9.1.1 API Call:

GET /aviation/chart/gnzsigwx/{flightlevel}

9.1.2 Path Parameter:

Path ParameterExampleDescription
flightlevelfl250A supported flight level: fl100, fl250, fl410.

This parameter is Mandatory.

9.1.3 Example:

This example will return a link to the latest gnzsigwx chart for flight level 250.

GET /aviation/chart/gnzsigwx/fl250

9.1.4 API Response:

{
    "version": "1.0",
    "issue-time": "2023-03-20T00:33:39Z",
    "path": "/aviation/api/aviation/chart/gnzsigwx/fl250",
    "response": [
        {
            "met:locator": "https://api.metservice.com/aviation/assets/gnzsigwx/20230319/gnzsigwx_fl250_191500_192100_191820.png",
            "met:valid-to": "2023-03-19T21:00:00Z",
            "met:product-name": "gnzsigwx",
            "met:domain": "aviation",
            "met:issue-time": "2023-03-19T18:20:00Z",
            "met:region": "nz",
            "met:valid-from": "2023-03-19T15:00:00Z",
            "av:flight-level": "fl250"
        },
        {
            "met:locator": "https://api.metservice.com/aviation/assets/gnzsigwx/20230320/gnzsigwx_fl250_192100_200300_200021.png",
            "met:valid-to": "2023-03-20T03:00:00Z",
            "met:product-name": "gnzsigwx",
            "met:domain": "aviation",
            "met:issue-time": "2023-03-20T00:21:00Z",
            "met:region": "nz",
            "met:valid-from": "2023-03-19T21:00:00Z",
            "av:flight-level": "fl250"
        },
        {
            "met:locator": "https://api.metservice.com/aviation/assets/gnzsigwx/20230319/gnzsigwx_fl250_200300_200900_192000.png",
            "met:valid-to": "2023-03-20T09:00:00Z",
            "met:product-name": "gnzsigwx",
            "met:domain": "aviation",
            "met:issue-time": "2023-03-19T20:00:00Z",
            "met:region": "nz",
            "met:valid-from": "2023-03-20T03:00:00Z",
            "av:flight-level": "fl250"
        }
    ]
}

Reviews